require(['jquery'], function($){ $( document ).ready(function() { $(".customlinksproduct_button").click(function(){ var product_id = $(this).attr('data-productid'); $("#customlinkedProducts_"+product_id).toggle(); $(".customlinkedpdpproducts").toggle(); }); }); $(document).on("click", ".nav-sections .nav-sections-items .section-item-content .navigation .megamenu.level0 > a .mm-subcategory-title", function(){ var gotourl=$(this).parent().attr("href"); $(".theme-pearl .page-wrapper .page-header-v3 .header.content .nav-toggle").trigger("click"); window.location.href = gotourl; }) $(document).ready(function () { $('select#type_person option').filter(function() { return !this.value || $.trim(this.value).length == 0 || $.trim(this.text).length == 0; }).remove(); setTimeout(function() { $("select[name='custom_attributes[type_person]'] option").filter(function() { return !this.value || $.trim(this.value).length == 0 || $.trim(this.text).length == 0; }).remove(); }, 5000); }); })